About 12488 letters

About 62 minutes

#Python's built-in functions

Function NameDetailsDescription
__import__viewImports a module
absviewReturns the absolute value
aiterviewReturns an asynchronous iterator
allviewReturns True if all elements in an iterable are true
anextviewReturns the next item from an asynchronous iterator
anyviewReturns True if any element in an iterable is true
asciiviewReturns a string with non-ASCII characters escaped
binviewConverts an integer to a binary string prefixed with 0b
boolviewConverts a value to bool
breakpointviewEnters the debugger at the call location
bytearrayviewConverts to bytearray type
bytesviewConverts to bytes type
callableviewChecks if an object is callable
chrviewConverts an integer to a Unicode character
classmethodviewConverts a method to a class method
compileviewCompiles source into code or AST object
complexviewConverts to complex type
delattrviewDeletes an attribute
dictviewConverts to dict type
dirviewLists names in the current local scope or object’s attributes
divmodviewReturns quotient and remainder
enumerateviewReturns an enumerate object
evalviewEvaluates an expression
execviewExecutes Python code
filterviewFilters items from an iterable
floatviewConverts to float type
formatviewFormats a value
frozensetviewConverts to frozenset
getattrviewGets an attribute's value
globalsviewReturns a dictionary of the current global symbol table
hasattrviewChecks if an object has an attribute
hashviewReturns the hash value of an object
helpviewLaunches the built-in help system
hexviewConverts an integer to a hexadecimal string prefixed with 0x
idviewReturns the identity of an object
inputviewReads input from the user
intviewConverts to int type
isinstanceviewChecks if an object is an instance of a class
issubclassviewChecks if a class is a subclass of another
iterviewReturns an iterator
lenviewReturns the length
listviewConverts to list type
localsviewReturns a mapping of the current local symbol table
mapviewApplies a function to all items in an iterable
maxviewReturns the largest item
memoryviewviewReturns a memory view object
minviewReturns the smallest item
nextviewRetrieves the next item from an iterator
objectviewBase class for all classes
octviewConverts an integer to an octal string prefixed with 0o
openviewOpens a file
ordviewConverts a character to its Unicode code point
powviewReturns the power of a number
printviewPrints to the console
propertyviewCreates a managed attribute
rangeviewReturns a sequence of numbers
reprviewReturns a string representation of an object
reversedviewReturns a reversed iterator
roundviewRounds a number
setviewConverts to set type
setattrviewSets an attribute’s value
sliceviewCreates a slice object
sortedviewReturns a sorted list
staticmethodviewConverts a method to a static method
strviewConverts to str type
sumviewReturns the sum of items
superviewCalls a method from a parent class
tupleviewConverts to tuple type
typeviewReturns the type of an object
varsviewReturns the dict attribute of an object
zipviewAggregates elements from multiple iterables

Created in 5/15/2025

Updated in 6/9/2025